b353839fd70887791579ca8cef0e88e20c92f17f,testsuite/integration/manualmode/src/test/java/org/jboss/as/test/manualmode/management/cli/GlobalOpsTestCase.java,GlobalOpsTestCase,testPersistentRestart,#,91
Before Change
checkResponseHeadersForProcessState(result);
cli.sendLine(":reload");
assertTrue(result.isIsOutcomeSuccess());
result = cli.readAllAsOpResult();
assertNoProcessState(result);
After Change
checkResponseHeadersForProcessState(result);
boolean sendLineResult = cli.sendLine(":reload",true);
assertTrue(sendLineResult);
//null when comm is broken on :reload before answer is sent.
if (cli.readOutput() != null) {